const github.com/klauspost/compress/flate.allocHistory

8 uses

	github.com/klauspost/compress/flate (current package)
		fast_encoder.go#L47: 	allocHistory = maxStoreBlockSize * 5                            // Size to preallocate for history.
		fast_encoder.go#L48: 	bufferReset  = (1 << 31) - allocHistory - maxStoreBlockSize - 1 // Reset the buffer offset when reaching this.
		fast_encoder.go#L84: 			e.hist = make([]byte, 0, allocHistory)
		fast_encoder.go#L184: 	if cap(e.hist) < allocHistory {
		fast_encoder.go#L185: 		e.hist = make([]byte, 0, allocHistory)
		level5.go#L627: 	if cap(e.hist) < allocHistory {
		level5.go#L628: 		e.hist = make([]byte, 0, allocHistory)
		level5.go#L645: 			e.hist = make([]byte, 0, allocHistory)